home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Prog / M / LSP cdevIntf.cpt / cdevIntf
Text File  |  1988-11-29  |  964b  |  37 lines

  1. {cdevIntf}
  2. {Chris Reed}
  3. {88/11/29}
  4.  
  5. UNIT cdevIntf;
  6.  
  7. INTERFACE
  8.  
  9.     CONST
  10.  
  11. { messages }
  12.  
  13.         initDev = 0; {initialization}
  14.         hitDev = 1; {user clicked on dialog item}
  15.         closeDev = 2; {user selected another cdev or CP closed}
  16.         nulDev = 3; {desk accesory run}
  17.         updateDev = 4; {update event}
  18.         activDev = 5; {activate event}
  19.         deActivDev = 6; {deactivate event}
  20.         keyEvtDev = 7; {key down or autokey event}
  21.         macDev = 8; {check machine characteristics}
  22.         undoDev = 9; {standard Edit menu undo}
  23.         cutDev = 10; {standard Edit menu cut}
  24.         copyDev = 11; {standard Edit menu copy}
  25.         pasteDev = 12; {standard Edit menu paste}
  26.         clearDev = 13; {standard Edit menu clear}
  27.         cursorDev = 14; {cursor in cdev area}
  28.  
  29. { Special cdevValue values }
  30.  
  31.         cdevGenErr = -1; {general error; gray w/o alert}
  32.         cdevMemErr = 0; {memory shortfall; alert user please}
  33.         cdevResErr = 1; {couldn't get a needed resource; alert}
  34.         cdevUnset = 3; {cdevValue is initalized to this}
  35.  
  36. IMPLEMENTATION
  37. END.